#
#  kvm
#  Enhydra Application Makefile
#
#

#
#  Where is the root of the source tree?
#
ROOT = ../../../..

#
#  What package does this directory represent? (use / instead of .)
#
PACKAGEDIR = com/lutris/sample

#
# To add new directories, create the directories and add their names
# this list. Be sure to copy a Makefile into each directory. Then add a
# "../" to the ROOT = ../../../..
# the PACKAGEDIR variable.
#
SUBDIRS = \
    data \
    forms \

#
# To add more Java classes, create the .java files and add their names to
# this list (without the .java extension).
#
CLASSES = \
	IStateMachine \
	IState \
	SampleMIDlet \
	XMLServices \
	RemoteServices \
     
#
# To add more Java classes, create the .java files and add their names to

# this list (without the .java extension).

#
include $(ROOT)/config.mk

clean::


